home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tutorii.zip / BPAUSE.DAT < prev    next >
Text File  |  1991-11-29  |  437b  |  16 lines

  1. Explanation of the PAUSE command. It is 
  2. a BATCH command.
  3.  
  4. This command will let the batch file pause 
  5. until the user presses a key on the keyboard. 
  6.  
  7. Example:
  8.        After you type a screen with certain 
  9.        information, and you want your user 
  10.        to read this information, then add
  11.        a pause statement right after it:
  12.               Echo off
  13.               cls
  14.               type test.bat
  15.               pause
  16.